home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / umich / utils / zoom.zoo / makefile next >
Makefile  |  1991-04-07  |  497b  |  26 lines

  1. #
  2. # Makefile for zoomacc
  3. #
  4. #
  5.  
  6. #
  7. # Define ACCorPRG to produce a file that can be run as a .PRG or as a .ACC
  8. #
  9.  
  10. CC=lc.ttp
  11. CFLAGS=-B -r1r -O -v -w -cusf -uACCorPRG
  12. AS=asm.ttp
  13. ASOPTS=-w
  14. LD=clink.ttp
  15. OBJS=zoomacc.o zoomline.o qblit.o
  16.  
  17. .s.o:
  18.     $(AS) $(ASOPTS) $*.s
  19.  
  20. zoomacc.acc: $(OBJS)
  21. #zoomacc.prg: $(OBJS)
  22.     $(LD) VERBOSE FROM csracc.o $(OBJS) LIB lcgsr.lib lcsr.lib TO zoomacc.acc
  23. #    $(LD) VERBOSE FROM csraut.o $(OBJS) LIB lcgsr.lib lcsr.lib TO zoomacc.prg
  24.  
  25. # End of makefile
  26.